type text/template/parse.elseNode

8 uses

	text/template/parse (current package)
		node.go#L809: type elseNode struct {
		node.go#L816: func (t *Tree) newElse(pos Pos, line int) *elseNode {
		node.go#L817: 	return &elseNode{tr: t, NodeType: nodeElse, Pos: pos, Line: line}
		node.go#L820: func (e *elseNode) Type() NodeType {
		node.go#L824: func (e *elseNode) String() string {
		node.go#L828: func (e *elseNode) writeTo(sb *strings.Builder) {
		node.go#L832: func (e *elseNode) tree() *Tree {
		node.go#L836: func (e *elseNode) Copy() Node {